home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
util
/
wb
/
mui_calc125.lha
/
mui_calc.mrx
< prev
next >
Wrap
Text File
|
1994-01-25
|
481b
|
33 lines
/*
** This script shows how to obtain
** general information on an application.
*/
options results
address 'MUICALC.1'
'info title'
title = result
'info author'
author = result
'info copyright'
copyright = result
'info description'
description = result
'info version'
version = result
'info base'
base = result
say "Title......: "title
say "Author.....: "author
say "Copyright..: "copyright
say "Description: "description
say "Version....: "version
say "Basename...: "base